Overview | Package | Class | Tree | Deprecated | Index | Help Java Platform
1.1.7
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD

Interface com.sun.java.swing.SingleSelectionModel

Implementing Classes:
DefaultSingleSelectionModel

public abstract interface SingleSelectionModel
A model that supports at most one indexed selection.


Method Summary
void addChangeListener(ChangeListener listener)
          Adds listener as a listener to changes in the model.
void clearSelection()
          Clears the selection (to -1).
int getSelectedIndex()
           
boolean isSelected()
          Returns true if the selection model currently has a selected value.
void removeChangeListener(ChangeListener listener)
          Removes listener as a listener to changes in the model.
void setSelectedIndex(int index)
          Sets the model's selected index to index.
 

Method Detail

getSelectedIndex

public int getSelectedIndex()
Returns:
the model's selection, or -1 if there is no selection.
See Also:
setSelectedIndex

setSelectedIndex

public void setSelectedIndex(int index)
Sets the model's selected index to index. Notifies any listeners if the model changes
See Also:
getSelectedIndex, addChangeListener

clearSelection

public void clearSelection()
Clears the selection (to -1).

isSelected

public boolean isSelected()
Returns true if the selection model currently has a selected value.

addChangeListener

public void addChangeListener(ChangeListener listener)
Adds listener as a listener to changes in the model.

removeChangeListener

public void removeChangeListener(ChangeListener listener)
Removes listener as a listener to changes in the model.

Overview | Package | Class | Tree | Deprecated | Index | Help Java Platform
1.1.7
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD

Submit a bug or feature
Submit comments/suggestions about javadoc
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.